/* * @(#)JSplitPane.java 1.38 98/04/08 * * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved. * * This software is the confidential and proprietary information of Sun * Microsystems, Inc. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Sun. * * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING * THIS SOFTWARE OR ITS DERIVATIVES. * */ package com.sun.java.swing; import java.awt.*; import com.sun.java.swing.border.Border; import com.sun.java.swing.plaf.*; import com.sun.java.accessibility.*; /** * JSplitPane is used to divide two (and only two) Components. The two * Components are graphically divided based on the look and feel * implementation, and the two Components can then be interactively * resized by the user. *
* The two Components can be aligned left to right using
* JSplitPane.HORIZONTAL_SPLIT
, or top to bottom using
* JSplitPane.VERTICAL_SPLIT
.
* The preferred way to change the size of the Components is to invoke
* setDividerLocation
where location
is either
* the new x or y position, depending on the orientation of the
* JSplitPane. If one component changes, JSplitPane also attempts to
* reposition the other component.
*
* To resize the Components to their preferred sizes invoke
* resetToPreferredSizes
.
*
* When the user is resizing the Components the minimum size of the
* Components is used to determine the maximum/minimum position the
* Components can be set to. So that if the minimum size of the two
* components is greater than the size of the splitpane the divider
* will not allow you to resize it. To alter the minimum size of a
* JComponent, see JComponent.setMinimumSize
.
*
* For the keyboard keys used by this component in the standard Look and * Feel (L&F) renditions, see the * JSplitPane key assignments. *
* Warning: serialized objects of this class will not be compatible with
* future swing releases. The current serialization support is appropriate
* for short term storage or RMI between Swing1.0 applications. It will
* not be possible to load serialized Swing1.0 objects with future releases
* of Swing. The JDK1.2 release of Swing will be the compatibility
* baseline for the serialized form of Swing objects.
*
* @see #setDividerLocation
* @see #resetToPreferredSizes
* @see JComponent.setMinimumSize
*
* @version 1.38 04/08/98
* @author Scott Violet
*/
public class JSplitPane extends JComponent implements Accessible
{
/** Vertical split indicates the Components are split along the
* y axis, eg the two Components will be split one on top of the other. */
public final static int VERTICAL_SPLIT = 0;
/** Horizontal split indicates the Components are split along the
* x axis, eg the two Components will be split one to the left of the
* other. */
public final static int HORIZONTAL_SPLIT = 1;
/** Used to add a Component to the left of the other Component. */
public final static String LEFT = "left";
/** Used to add a Component to the right of the other Component. */
public final static String RIGHT = "right";
/** Used to add a Component above the other Component. */
public final static String TOP = "top";
/** Used to add a Component below the other Component. */
public final static String BOTTOM = "bottom";
/** Used to add a Component that will represent the divider. */
public final static String DIVIDER = "divider";
/** Bound property name for orientation (horizontal or vertical). */
public final static String ORIENTATION_PROPERTY = "orientation";
/** Bound property name for continuousLayout. */
public final static String CONTINUOUS_LAYOUT_PROPERTY = "continuousLayout";
/** Bound property name for border. */
public final static String DIVIDER_SIZE_PROPERTY = "dividerSize";
/** Bound property for oneTouchExpandable. */
public final static String ONE_TOUCH_EXPANDABLE_PROPERTY =
"oneTouchExpandable";
/** Bound property for lastLocation. */
public final static String LAST_DIVIDER_LOCATION_PROPERTY =
"lastDividerLocation";
/** How the views are split. */
protected int orientation;
/** Whether or not the views are continuously redisplayed while
* resizing. */
protected boolean continuousLayout;
/** The left or top component. */
protected Component leftComponent;
/* The right or bottom component. */
protected Component rightComponent;
/** Size of the divider. */
protected int dividerSize;
/** Is a little widget provided to quickly expand/collapse the
* split pane? */
protected boolean oneTouchExpandable;
/** Previous location of the split pane. */
protected int lastDividerLocation;
/**
* Returns a new JSplitPane configured to arrange the child
* components side-by-side horizontally with no continuous
* layout, using two buttons for the compoents.
*/
public JSplitPane() {
this(JSplitPane.HORIZONTAL_SPLIT, false, new JButton("left button"),
new JButton("right button"));
}
/**
* Returns a new JSplitPane configured with the specified orientation
* and no continuous layout.
*
* @param newOrientation an int specifying the horizontal or vertical
* orientation
*/
public JSplitPane(int newOrientation) {
this(newOrientation, false);
}
/**
* Returns a new JSplitPane with the specified orientation and
* redrawing style.
*
* @param newOrientation an int specifying the horizontal or vertical
* orientation
* @param newContinuousLayout a boolean, true for the components to
* redraw continuously as the divider changes position, false
* to wait until the divider position stops changing to redraw
*/
public JSplitPane(int newOrientation, boolean newContinuousLayout) {
this(newOrientation, newContinuousLayout, null, null);
}
/**
* Returns a new JSplitPane with the specified orientation and
* with the specifiied components that does not do continuous
* redrawing.
*
* @param newOrientation an int specifying the horizontal or vertical
* orientation
* @param newContinuousLayout a boolean, true for the components to
* redraw continuously as the divider changes position, false
* to wait until the divider position stops changing to redraw
* @param newLeftComponent the Component that will appear on the left
* of a horizontally-split pane, or at the top of a
* vertically-split pane.
*/
public JSplitPane(int newOrientation,
Component newLeftComponent, Component newRightComponent){
this(newOrientation, false, newLeftComponent, newRightComponent);
}
/**
* Returns a new JSplitPane with the specified orientation and
* redrawing style, and with the specifiied components.
*
* @param newOrientation an int specifying the horizontal or vertical
* orientation
* @param newContinuousLayout a boolean, true for the components to
* redraw continuously as the divider changes position, false
* to wait until the divider position stops changing to redraw
* @param newLeftComponent the Component that will appear on the left
* of a horizontally-split pane, or at the top of a
* vertically-split pane.
*/
public JSplitPane(int newOrientation, boolean newContinuousLayout,
Component newLeftComponent, Component newRightComponent){
super();
setLayout(null);
orientation = newOrientation;
if (orientation != HORIZONTAL_SPLIT && orientation != VERTICAL_SPLIT)
throw new IllegalArgumentException("cannot create JSplitPane, orientation must be one of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT");
continuousLayout = newContinuousLayout;
if (newLeftComponent != null)
setLeftComponent(newLeftComponent);
if (newRightComponent != null)
setRightComponent(newRightComponent);
updateUI();
}
/**
* Sets the L&F object that renders this component.
*
* @param ui the SplitPaneUI L&F object
* @see UIDefaults#getUI
*/
public void setUI(SplitPaneUI ui) {
if ((SplitPaneUI)this.ui != ui) {
super.setUI(ui);
invalidate();
// System.out.println ("setUI" );
// System.out.println ("Divider Size " + getDividerSize() );
}
}
/**
* Returns the SplitPaneUI that is providing the current look and
* feel.
*
* @return the SplitPaneUI object that renders this component
* @beaninfo
* expert: true
* description: The L&F object that renders this component.
*/
public SplitPaneUI getUI() {
return (SplitPaneUI)ui;
}
/**
* Notification from the UIManager that the L&F has changed.
* Replaces the current UI object with the latest version from the
* UIManager.
*
* @see JComponent#updateUI
*/
public void updateUI() {
setUI((SplitPaneUI)UIManager.getUI(this));
invalidate();
}
/**
* Returns the name of the L&F class that renders this component.
*
* @return "SplitPaneUI"
* @see JComponent#getUIClassID
* @see UIDefaults#getUI
* @beaninfo
* expert: true
* description: A string that specifies the name of the L&F class.
*/
public String getUIClassID() {
return "SplitPaneUI";
}
/**
* Sets the size of the divider.
*
* @param newSize an int giving the size of the divider in pixels
* @beaninfo
* bound: true
* description: The size of the divider.
*/
public void setDividerSize(int newSize) {
int oldSize = dividerSize;
if (oldSize != newSize) {
dividerSize = newSize;
firePropertyChange(DIVIDER_SIZE_PROPERTY, oldSize, newSize);
}
}
/**
* Returns the size of the divider.
*
* @return an int giving the size of the divider in pixels
*/
public int getDividerSize() {
return dividerSize;
}
/**
* Sets the component to the left (or above) the divider.
*
* @param comp the Component to display in that position
*/
public void setLeftComponent(Component comp) {
if (comp == null) {
if (leftComponent != null) {
remove(leftComponent);
leftComponent = null;
}
} else {
add(comp, JSplitPane.LEFT);
}
}
/**
* Returns the component to the left (or above) the divider.
*
* @return the Component displayed in that position
* @beaninfo
* preferred: true
* description: The component to the left (or above) the divider.
*/
public Component getLeftComponent() {
return leftComponent;
}
/**
* Sets the component above, or to the left of the divider.
*
* @param comp the Component to display in that position
* @beaninfo
* description: The component above, or to the left of the divider.
*/
public void setTopComponent(Component comp) {
setLeftComponent(comp);
}
/**
* Returns the component above, or to the left of the divider.
*
* @return the Component displayed in that position
*/
public Component getTopComponent() {
return leftComponent;
}
/**
* Sets the component to the right (or below) the divider.
*
* @param comp the Component to display in that position
* @beaninfo
* preferred: true
* description: The component to the right (or below) the divider.
*/
public void setRightComponent(Component comp) {
if (comp == null) {
if (rightComponent != null) {
remove(rightComponent);
rightComponent = null;
}
} else {
add(comp, JSplitPane.RIGHT);
}
}
/**
* Returns the component to the right (or below) the divider.
*
* @return the Component displayed in that position
*/
public Component getRightComponent() {
return rightComponent;
}
/**
* Sets the component below, or to the right of the divider.
*
* @param comp the Component to display in that position
* @beaninfo
* description: The component below, or to the right of the divider.
*/
public void setBottomComponent(Component comp) {
setRightComponent(comp);
}
/**
* Returns the component below, or to the right of the divider.
*
* @return the Component displayed in that position
*/
public Component getBottomComponent() {
return rightComponent;
}
/**
* Determines whether the JSplitPane provides a UI widget
* on the divider to quickly expand/collapse the divider.
*
* @param newValue a boolean, where true means to provide a
* collapse/expand widget
* @beaninfo
* bound: true
* description: UI widget on the divider to quickly
* expand/collapse the divider.
*/
public void setOneTouchExpandable(boolean newValue) {
boolean oldValue = oneTouchExpandable;
oneTouchExpandable = newValue;
firePropertyChange(ONE_TOUCH_EXPANDABLE_PROPERTY, oldValue, newValue);
repaint();
}
/**
* Returns true if the pane provides a UI widget to collapse/expand
* the divider.
*
* @return true if the split pane provides a collapse/expand widget
*/
public boolean isOneTouchExpandable() {
return oneTouchExpandable;
}
/**
* Sets the last location the divider was at to
* newLastLocation
.
*
* @param newLastLocation an int specifying the last divider location
* in pixels, from the left (or upper) edge of the pane to the
* left (or upper) edge of the divider
* @beaninfo
* bound: true
* description: The last location the divider was at.
*/
public void setLastDividerLocation(int newLastLocation) {
int oldLocation = lastDividerLocation;
lastDividerLocation = newLastLocation;
firePropertyChange(LAST_DIVIDER_LOCATION_PROPERTY, oldLocation,
newLastLocation);
}
/**
* Returns the last location the divider was at.
*
* @return an int specifying the last divider location as a count
* of pixels from the left (or upper) edge of the pane to the
* left (or upper) edge of the divider
*/
public int getLastDividerLocation() {
return lastDividerLocation;
}
/**
* Sets the orientation, or how the splitter is divided. The options
* are:
component
from the
* pane. Resets the leftComponent or rightComponent instance
* variable, as necessary.
*
* @param component the Component to remove
*/
public void remove(Component component) {
if (component == leftComponent) {
leftComponent = null;
} else if (component == rightComponent) {
rightComponent = null;
}
super.remove(component);
}
/**
* Removes the Component at the specified index. Updates the
* leftComponent and rightComponent ivars (instance variables)
* as necessary, and then messages super.
*
* @param index an int specifying the component to remove, where
* 0 specifies the left/top component and 1 specifies the
* bottom/right component
*/
public void remove(int index) {
Component comp = getComponent(index);
if (comp == leftComponent) {
leftComponent = null;
} else if (comp == rightComponent) {
rightComponent = null;
}
super.remove(index);
}
/**
* Removes all the child components from the receiver. Resets the
* leftComonent and rightComponent instance variables.
*/
public void removeAll() {
leftComponent = rightComponent = null;
super.removeAll();
}
/**
* If constraints
identifies the left/top or
* right/bottom child component, and a component with that identifier
* was previously added, it will be removed and then comp
* will be added in its place. If constraints
is not
* one of the known identifers the layout manager may throw an
* IllegalArgumentException.
* * The possible constraints objects (Strings) are:
* Warning: serialized objects of this class will not be compatible with * future swing releases. The current serialization support is appropriate * for short term storage or RMI between Swing1.0 applications. It will * not be possible to load serialized Swing1.0 objects with future releases * of Swing. The JDK1.2 release of Swing will be the compatibility * baseline for the serialized form of Swing objects. */ protected class AccessibleJSplitPane extends AccessibleJComponent implements AccessibleValue { /** * Get the state set of this object. * * @return an instance of AccessibleState containing the current state * of the object * @see AccessibleState */ public AccessibleStateSet getAccessibleStateSet() { AccessibleStateSet states = super.getAccessibleStateSet(); // FIXME: [[[WDW - Should also add BUSY if this implements // Adjustable at some point. If this happens, we probably // should also add actions.]]] if (getOrientation() == VERTICAL_SPLIT) { states.add(AccessibleState.VERTICAL); } else { states.add(AccessibleState.HORIZONTAL); } return states; } /** * Get the AccessibleValue associated with this object if one * exists. Otherwise return null. */ public AccessibleValue getAccessibleValue() { return this; } /** * Get the accessible value of this object. * * @return a localized String describing the value of this object */ public Number getCurrentAccessibleValue() { return new Integer(getDividerLocation()); } /** * Set the value of this object as a Number. * * @return True if the value was set. */ public boolean setCurrentAccessibleValue(Number n) { if (n instanceof Integer) { setDividerLocation(n.intValue()); return true; } else { return false; } } /** * Get the minimum accessible value of this object. * * @return The minimum value of this object. */ public Number getMinimumAccessibleValue() { return new Integer(getUI().getMinimumDividerLocation()); } /** * Get the maximum accessible value of this object. * * @return The maximum value of this object. */ public Number getMaximumAccessibleValue() { return new Integer(getUI().getMaximumDividerLocation()); } /** * Get the role of this object. * * @return an instance of AccessibleRole describing the role of * the object * @see AccessibleRole */ public AccessibleRole getAccessibleRole() { return AccessibleRole.SPLIT_PANE; } } // inner class AccessibleJSplitPane }